home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / mkmkfiles.sgi < prev    next >
Encoding:
Text File  |  1998-08-12  |  413 b   |  13 lines

  1. #!/bin/csh -f
  2. echo "Setting up use of SGI Makefiles"
  3. echo ""
  4. echo "NOTE: If you have a Fortran compiler and IRIX 5.3 or later, please see"
  5. echo "the instructions in README.fortran for building the GLUT Fortran"
  6. echo "API and sample programs.  Fortran code is not built by default."
  7. echo ""
  8. foreach i ( `find . -name Makefile.sgi -print` )
  9.    echo "Linking $i to $i:r"
  10.    rm -f $i:r
  11.    ln -s Makefile.sgi $i:r
  12. end
  13.